Both the Movie and the DVC export components use the new export registration mechanism. The components are now registered as follows:
componentType 'spit'
componentSubType 'MooV'
componentManufacturer 'appl'
componentFlags canMovieExportFiles
+ canMovieExportFromProcedures
+ hasMovieExportUserInterface
+ canMovieExportValidateMovie
+ movieExportMustGetSourceMediaType
componentType 'spit'
componentSubType 'dvc!'
componentManufacturer 'appl'
componentFlags canMovieExportFiles
+ canMovieExportFromProcedures
+ hasMovieExportUserInterface
+ canMovieExportValidateMovie
+ movieExportMustGetSourceMediaType
Because the DVC component uses the QuickTime Movie export component, it has been changed now to search for the 'MooV' exporter, using the following ComponentDescription:
cd.componentType = 'spit';
cd.componentSubType = MovieFileType;
cd.componentManufacturer = 'appl';
cd.componentFlags = canMovieExportFromProcedures +
movieExportMustGetSourceMediaType;
cd.componentFlagsMask = cd.componentFlags;
| Previous | Chapter contents | Chapter top | Section top | Next |